home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ Wallpaper Style 1.xpl < prev    next >
Text File  |  2000-12-14  |  1KB  |  61 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="7"
  3. "COUNT"="3"
  4. "UIPATH"="Appearance\Desktop\Wallpaper"
  5. "NAME"="Wallpaper Style"
  6. "VERSION"="2.01"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Display wallpaper as is (Default)" 
  9. "TEXT 2"="Tile wallpaper until screen is filled"
  10. "TEXT 3"="Stretch wallpaper to fit screen"
  11. "DESCRIPTION 1"="This allows you to change the appearance of your background wallpaper."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16. "COMMENT 2"="Thanks to CptSiskoX!"
  17. "COMMENT 3"="Thanks to SMσK [mailto:smak-@gmx.net] for the bug-fix!"
  18.  
  19.  
  20. sV1="HKEY_CURRENT_USER\Control Panel\Desktop\WallpaperStyle" 'STR
  21. sV2="HKEY_CURRENT_USER\Control Panel\Desktop\TileWallpaper" 'str
  22. Sub Plugin_Initialize 
  23.  
  24.     i=RegReadValue(sV1)
  25.     if i="0" then 
  26.        SetUiElement 1,true
  27.     elseif i="1" then
  28.        SetUiElement 2,true
  29.     elseif i="2" then
  30.        SetUiElement 3,true
  31.     end if
  32.  
  33. End Sub
  34.  
  35.  
  36. Sub Plugin_CheckData(ElementIndex)
  37. End Sub
  38.  
  39.  
  40.  
  41. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  if GetUIElement(1)=true then
  43.     i1=0
  44.     i2=0
  45.  elseif GetUIElement(2)=true then
  46.     i1=0
  47.     i2=1
  48.  else
  49.     i1=2
  50.     i2=0
  51.  end if
  52.  Call RegWriteValue(sV1,i1,1)
  53.  Call RegWriteValue(sV2,i2,1)
  54.  
  55.  Call Logoff()
  56. End Sub
  57.  
  58.  
  59. Sub Plugin_Terminate 
  60. End Sub
  61.